home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / netinclude / rpc / rpc.h < prev    next >
C/C++ Source or Header  |  1994-03-09  |  3KB  |  95 lines

  1. /*
  2.  * $Id: rpc.h,v 1.2 1993/11/10 00:50:17 jraja Exp $
  3.  *
  4.  * $Log: rpc.h,v $
  5.  * Revision 1.2  1993/11/10  00:50:17  jraja
  6.  * ANSI prototypes.
  7.  * Removed getrpcent() if AMITCP defined.
  8.  *
  9.  */
  10. /* @(#)rpc.h    2.4 89/07/11 4.0 RPCSRC; from 1.9 88/02/08 SMI */
  11. /*
  12.  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
  13.  * unrestricted use provided that this legend is included on all tape
  14.  * media and as a part of the software program in whole or part.  Users
  15.  * may copy or modify Sun RPC without charge, but are not authorized
  16.  * to license or distribute it to anyone else except as part of a product or
  17.  * program developed by the user.
  18.  * 
  19.  * SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING THE
  20.  * WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
  21.  * PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE.
  22.  * 
  23.  * Sun RPC is provided with no support and without any obligation on the
  24.  * part of Sun Microsystems, Inc. to assist in its use, correction,
  25.  * modification or enhancement.
  26.  *
  27.  * SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE
  28.  * INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY SUN RPC
  29.  * OR ANY PART THEREOF.
  30.  *
  31.  * In no event will Sun Microsystems, Inc. be liable for any lost revenue
  32.  * or profits or other special, indirect and consequential damages, even if
  33.  * Sun has been advised of the possibility of such damages.
  34.  *
  35.  * Sun Microsystems, Inc.
  36.  * 2550 Garcia Avenue
  37.  * Mountain View, California  94043
  38.  */
  39.  
  40. /*
  41.  * rpc.h, Just includes the billions of rpc header files necessary to
  42.  * do remote procedure calling.
  43.  *
  44.  * Copyright (C) 1984, Sun Microsystems, Inc.
  45.  */
  46. #ifndef __RPC_HEADER__
  47. #define __RPC_HEADER__
  48.  
  49. #include <rpc/types.h>        /* some typedefs */
  50. #include <netinet/in.h>
  51.  
  52. /* external data representation interfaces */
  53. #include <rpc/xdr.h>        /* generic (de)serializer */
  54.  
  55. /* Client side only authentication */
  56. #include <rpc/auth.h>        /* generic authenticator (client side) */
  57.  
  58. /* Client side (mostly) remote procedure call */
  59. #include <rpc/clnt.h>        /* generic rpc stuff */
  60.  
  61. /* semi-private protocol headers */
  62. #include <rpc/rpc_msg.h>    /* protocol for rpc messages */
  63. #include <rpc/auth_unix.h>    /* protocol for unix style cred */
  64. /*
  65.  *  Uncomment-out the next line if you are building the rpc library with    
  66.  *  DES Authentication (see the README file in the secure_rpc/ directory).
  67.  */
  68. /*#include <rpc/auth_des.h>    /* protocol for des style cred */
  69.  
  70. /* Server side only remote procedure callee */
  71. #include <rpc/svc.h>        /* service manager and multiplexer */
  72. #include <rpc/svc_auth.h>    /* service side authenticator */
  73.  
  74. /*
  75.  * COMMENT OUT THE NEXT INCLUDE (or add to the #ifndef) IF RUNNING ON
  76.  * A VERSION OF UNIX THAT USES SUN'S NFS SOURCE.  These systems will
  77.  * already have the structures defined by <rpc/netdb.h> included in <netdb.h>.
  78.  */
  79. /* routines for parsing /etc/rpc */
  80.  
  81. struct rpcent {
  82.       char    *r_name;        /* name of server for this rpc program */
  83.       char    **r_aliases;    /* alias list */
  84.       int     r_number;       /* rpc program number */
  85. };
  86.  
  87. struct rpcent *getrpcbyname(char * name),
  88.   *getrpcbynumber(int number)
  89. #ifndef AMITCP
  90.   ,*getrpcent(void)
  91. #endif
  92. ;
  93.  
  94. #endif /* ndef __RPC_HEADER__ */
  95.